# coding:utf-8
        """
        Dictionaries are used to store data values in key:value pairs.
        A dictionary is a collection which is ordered*, changeable and do not allow duplicates.
        item types are String, int, boolean, and list data types:

        辞書は、キーと値のペアでデータ値を保存するために使用されます。
        辞書は、順序付けされ、変更可能で、重複を許可しないコレクションです。
        アイテムの種類は、文字列、整数、ブール値、およびリストのデータ型です。
        """
        thisdict = {
          "brand": "Ford",
          "model": "Mustang",
          "year": 1964,
          "colors": ["red", "white", "blue"]
        }
        print(type(thisdict))
        print(thisdict)

        print(thisdict["brand"])
        print(len(thisdict))